home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Libraries / stdwin / Packs / vt / vtsend.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-10-18  |  143 b   |  13 lines  |  [TEXT/????]

  1. /* Default vtsend function */
  2.  
  3. #include "vtimpl.h"
  4.  
  5. void
  6. vtsend(vt, text, len)
  7.     VT *vt;
  8.     char *text;
  9.     int len;
  10. {
  11.     vtansiputs(vt, text, len);
  12. }
  13.